All Questions
Tagged with design-principlesarchitectural-patterns
3 questions
0votes
1answer
671views
Source of "... against the interface, not the implementation"
For a paper I am writing, I need to find the origin of the following two phrases: Code against the interface, not the implementation and Test the interface, not the implementation (Note: the ...
0votes
0answers
123views
What is the best way to share data between two loosely coupled interfaces?
I have two interfaces: Camera and Computer. So far, each interfaces have multiple implementations in my codebase and they are loosely coupled (no implementations of Camera depends on any ...
5votes
3answers
6kviews
Are there any well known alternatives to the SOLID principles for OO programming? [closed]
I´m looking for some kind of better compilation of principles which takes the old basic concepts (DRY, KISS, etc...) and applies them to OOP related concepts like abstract clasess, interfaces etc... ...